home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / ctlib100.zip / INSTALL.LZH / BSDPROCS.INT < prev    next >
Text File  |  1996-10-12  |  1KB  |  46 lines

  1. {**************************************************************************}
  2. {*  BitSoft Development, L.L.C.                                           *}
  3. {*  Copyright (C) 1995, 1996 BitSoft Development, L.L.C.                  *}
  4. {*  All rights reserved.                                                  *}
  5. {*  Global procedures unit                                                *}
  6. {*  version 1.1.0                                                         *}
  7. {**************************************************************************}
  8.  
  9. unit BsdProcs;
  10.  
  11. {$X+}
  12.  
  13. interface
  14.  
  15. uses Objects, BsdTypes,
  16.      {$ifdef Windows}
  17.      WinDos
  18.      {$else}
  19.      Dos
  20.      {$endif Windows};
  21.  
  22. {$ifdef Windows}
  23. procedure BiosIntr (AInterrupt : Word; ARegs : TRegisters);
  24. {$else}
  25. procedure BiosIntr (AInterrupt : Word; ARegs : Registers);
  26. {$endif Windows}
  27.  
  28. function CallerFrame : Word;
  29.  
  30. function CompareStr (Str1, Str2 : String) : Integer;
  31.  
  32. function CompareIStr (Str1, Str2 : String) : Integer;
  33.  
  34. procedure DisposeObject (AObject : PObject);
  35.  
  36. procedure DisposeString (AString : PString);
  37.  
  38. procedure FreeMemory (Buffer : Pointer; BufferSize : Word);
  39.  
  40. function StrPNew (Str : String) : PChar;
  41.  
  42. function UpperStr (Str : String) : String;
  43.  
  44. implementation
  45. end.
  46.